home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Full / NetObjects Fusion 9 Standard / NOF9_Full_EN.exe / data1.cab / FSI / SiteProjectPreferences / lib / SPPConstants.js < prev   
Encoding:
Text File  |  2005-11-16  |  2.0 KB  |  65 lines

  1. /****i* SOURCE_FILE/INFO
  2. *
  3. * NAME
  4. *  SPPConstants.js
  5. *
  6. * USAGE
  7. *  Part of Netobjects JavaScript Library.
  8. *
  9. * COPYRIGHT
  10. *  Copyright ⌐ 2002-2004 Website Pros, Inc.
  11. *  All Rights Reserved.
  12. *
  13. *  This is an unpublished work protected by Website Pros, Inc.
  14. *  as a trade secret, and is not to be used or disclosed except as
  15. *  expressly provided in a written license agreement executed by
  16. *  you and Website Pros, Inc.
  17. *
  18. *      <copyright@websitepros.com>
  19. *
  20. * NOTES
  21. *  JavaScript code.
  22. *****/
  23. if (typeof(SPPConstants) == "undefined")
  24. {            
  25.     
  26.     var SPPConstants = {
  27.         
  28.         NOF_MODULE_TYPE                           : "Preferences",
  29.         NOF_CONFIG_FILE_NAME                     : "SiteProjectPreferences",
  30.         
  31.         NOF_MODULE_TEMPLATE                       :
  32.         "<?xml version=\"1.0\"?>" + 
  33.         "<nof:projectPreferences version=\"1\" xmlns:nof=\"http://www.netobjects.com/fusion/projectPreferences\">" +
  34.         "<nof:placeAtTop>False</nof:placeAtTop>" +    
  35.         "<nof:nrOfDisplayItems>7</nof:nrOfDisplayItems>" +
  36.         "<nof:orderCriteria>2,false</nof:orderCriteria>" +
  37.         "</nof:projectPreferences>",
  38.         
  39.         
  40.         NOF_PROJECT_PREFERENCES             : "nof:projectPreferences",
  41.         NOF_PROJECT_PLACE_AT_TOP             : "nof:placeAtTop",
  42.         NOF_PROJECT_NR_OF_DISPLAY_ITEMS     : "nof:nrOfDisplayItems",
  43.         NOF_PROJECT                            : "nof:project",
  44.         NOF_PROJECT_NAME                    : "nof:name",
  45.         NOF_PROJECT_PATH                    : "nof:path",
  46.         NOF_PROJECT_LAST_UPDATE                : "nof:lastUpdate",
  47.         NOF_PROJECT_LAST_PUBLISH            : "nof:lastPublish",
  48.         NOF_PROJECT_IS_LOCK                 : "nof:isLock",
  49.         NOF_PROJECT_SITE_PAGES                 : "nof:sitePages",
  50.         NOF_PROJECT_IS_REMOVED                 : "nof:isRemoved",
  51.         NOF_PROJECT_LAST_PAGE                 : "nof:lastPage",
  52.         NOF_PROJECT_POSITION                 : "nof:position",
  53.         NOF_PROJECT_ORDER_CRITERIA            : "nof:orderCriteria",
  54.         NOF_PROJECT_INDEX                    : "nof:index",
  55.         
  56.         PROJECT_LOCK_TRUE             : "true",
  57.         PROJECT_LOCK_FALSE             : "false",
  58.         PROJECT_PLACE_TOP_TRUE         : "True",
  59.         PROJECT_PLACE_TOP_FALSE     : "False",
  60.         
  61.         CHAR_ORDER_ASCENT     : '/\\',
  62.         CHAR_ORDER_DESCENT : '\\/'
  63.     }
  64. }
  65.